//------------------------------------------------------------------
//            CREATE a + IMAGE USING THE LED MATRIX TOOL
//            ==========================================
//
// This program displays the + image on the LED matrix
//
// Author: Dogan Ibrahim
// File  : MatrixPlus2
// Date  : July, 2023
//-------------------------------------------------------------------
#include "Arduino_LED_Matrix.h"
#include "NewImage.h"
ArduinoLEDMatrix matrix;

void setup() 
{
  matrix.begin();
}

//
// Display the image
//
void loop() 
{
  matrix.loadFrame(NewImage);
  while(1);
} 
